home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Tools&Utilities / Updaters / AppMaker 1.5.2->1.5.4 / Libraries / THINK / AMClassLibC / CAMButton.cp < prev    next >
Encoding:
Text File  |  1991-09-20  |  897 b   |  34 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CAMButton.c
  3.         
  4.     
  5.     Like the Button class that it overrides, except that font, size and
  6.     style can be set from a control pane (CtlP) resource.
  7.  
  8.     SUPERCLASS = CButton
  9.     
  10.     Copyright © 1991 Bowers Development Corporation. All rights reserved.
  11.  
  12.  ******************************************************************************/
  13.  
  14. #include "CAMButton.h"
  15. #include "AMUtilities.h"
  16.  
  17. /******************************************************************************
  18.  IViewTemp
  19.  
  20.      Initialize a Button's ControlPane using a template
  21.  
  22. ******************************************************************************/
  23.  
  24. void CAMButton::IViewTemp             (CView            *anEnclosure,
  25.                                       CBureaucrat    *aSupervisor,
  26.                                       Ptr            viewData)
  27. {
  28.     IAMControlPane (this, anEnclosure, aSupervisor, viewData);
  29.  
  30. } /* IViewTemp */
  31.  
  32. /* CAMButton */
  33.  
  34.